home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 April / EnigmA AMIGA RUN 17 (1997)(G.R. Edizioni)(IT)[!][issue 1997-04][EAR-CD].iso / EARCD / comm / tcp / AbDial.lha / AbDial.readme next >
Text File  |  1996-12-06  |  2KB  |  48 lines

  1. Short:    Nice graphical dialer for use with AmiTCP
  2. Author:   markie@dds.nl
  3. Uploader: markie@dds.nl
  4. Type:     comm/tcp
  5.  
  6. This arexx script is used to dial a provider for connecting
  7. to the internet. It has a nice graphics interface and uses
  8. simple configuration files. Can be used for slip (dynamic ip)
  9. and ppp connections.
  10.  
  11. This program is giftware; if you like it and use it you should
  12. send the author a gift. ( ZIP drive / JAZZ drive / 060 / etc. ;-)
  13.  
  14. For a multi provider solution for amitcp see 'AbStartTCP' in
  15. comm/tcp.
  16.  
  17. *****************************************************************
  18.  
  19. Example configuration file, the resulting ip-address of your
  20. amiga will be in $AbcsIp afwards. Use 'startnet $AbcsIp' !
  21.  
  22. // serbaud <baudrate>    : Set serial baudrate (default 57600)
  23. // serdevice <device>    : Set serial device (default serial.device)
  24. // setopt <options>      : Set serial options (default 8N1)
  25. // init <str>            : Send modem init string
  26. // flush                 : Flush internal serial buffer
  27. // dial <name> <number>  : Dial
  28. // delay <secs>          : Wait <secs> seconds
  29. // wait <secs> <data>    : Wait <secs> seconds for <data> to be received
  30. // getip <envvar> <data> : Get IP-num after <data> from receive buffer to <envvar>
  31. // send <data>           : Send <data> to port with <cr><lf> appended.
  32. // send2 <data>          : Send <data> to port.
  33. // hangup                : Hangup line
  34.  
  35. init atz
  36. init atl0&d0
  37. dial vpro 960-256096
  38. wait 10 login:
  39. send gast
  40. wait 10 Password:
  41. send gast
  42. wait 10 (S)lip
  43. send s
  44. wait 10 Your IP address
  45. getip AbcsIP
  46.  
  47. *****************************************************************
  48.